home *** CD-ROM | disk | FTP | other *** search
/ Game Programming in C++ - Start to Finish / GameProgrammingS.iso / Peon / PeonSDK-Win32-1.0.0.exe / {app} / PeonMain / source / Plane.cpp < prev    next >
C/C++ Source or Header  |  2005-11-18  |  185b  |  20 lines

  1.  
  2. #include "Plane.h"
  3.  
  4. namespace peon 
  5. {
  6.     Plane::Plane(float _x, float _y, float _z, float _d)
  7.     {
  8.         normal.set(_x, _y, _z );
  9.         d = _d;
  10.  
  11.     }
  12.  
  13.     Plane::~Plane()
  14.     {
  15.  
  16.     }
  17.  
  18. }
  19.  
  20.